home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 May
/
EnigmA AMIGA RUN 07 (1996)(G.R. Edizioni)(IT)[!][issue 1996-05][EARSAN CD VI].iso
/
progs
/
s
/
xtruder
/
examples
/
xtruder_checkfiles.rexx
next >
Wrap
OS/2 REXX Batch file
|
1996-02-12
|
455b
|
28 lines
/*
** 'CheckFiles' example
*/
Options Results
Address XTRUDER
CheckFiles '"dh3:virus/w"'
IF RC < 0 THEN
Say 'Error 'RC' occured!'
ELSE IF RC = 0 THEN
Say 'No vira found in checked files'
ELSE IF RC > 0 THEN
DO
Say 'Number of vira found: ' RC
Say ''
DO x=1 to RC
GetVirusName x
Say 'Virus name: ' result''
GetVirusFileName x
Say 'Virus file name:
' result'
'
Say ''
END
END